home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM A / PD-ROM A.iso / Programming / Programming Languages / XLISP 2.0 / XLISP Tools / Medical (DD) / README.TXT < prev   
Encoding:
Text File  |  1990-04-21  |  2.5 KB  |  95 lines  |  [TEXT/ttxt]

  1. -----------------------------
  2. some explanations on adx.lsp
  3. _____________________________
  4.  
  5. The idea behind this program came into existence, when a poor radiologist
  6. got tired in looking up differentials in thick, heavy books.
  7. He spent some time in learning lisp and created a fragmentary
  8. database of the things he needed: diseases and differentials.
  9.  
  10. A differential is a list of diseases with ONE common symptom, 
  11. fever, for example, and quite a few medical textbooks consist of
  12. nothing more than these 'differentials'.
  13. Now if a patient has TWO symptoms , you combine the two differentials
  14. of his symptoms and voila there is a DIAGNOSIS, most of the time.
  15.  
  16. This is exactly how this small program works:
  17.  
  18. You enter a symptom and get a list of diagnoses; you continue with a 
  19. second and third symptom until you arrive at one diagnosis (thats fine)
  20. or you are left with a list of about 2 to 5 diagnoses.
  21.  
  22. But there is some help in this cases, too.
  23.  
  24. The program will give you a list of symptoms, which occur only in
  25. the first diagnosis but not in the second and vice versa, and sometimes
  26. the age of the patient will be helpful, because some diseases will occur 
  27. only in adults but not children.
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. WARNING:
  35.  
  36. Don't try to treat a patient or yourself only on the base of this program !
  37.  
  38. !!!! IT DOES NOT REPLACE A DOCTOR !!!!
  39.  
  40. Look at the symptom-file first; the spelling of the symptoms is not quite
  41. ordinary language and the '-' between the words are mandatory.
  42.  
  43. The program runs on an ATARI with 4 MB, so if you run out of memory, then
  44. don't blame me !
  45.  
  46.  
  47.  
  48.  
  49.  
  50. Files included:
  51.  
  52. ADX.TXT       This text
  53. ADX.LSP       The program.
  54. ASYMPTOM.TXT  The implemented symptoms
  55. DD.TXT        The implemented differentials
  56. DISEASES.TXT  The implemented diseases
  57.  
  58. Files needed:
  59.  
  60. XLISP 2.0     by Dave Betz, a great program !
  61.               you'll find it on COMPUSERVE  ( GO AIEXPERT)
  62. UL.ARC        by Larry Mulcahy, just wonderful !
  63.               a bunch of XLISP routines you'll need.
  64.               (GO AIEXPERT)
  65.  
  66.  
  67. Program loading
  68. ===============
  69.  
  70.  
  71. 1) Load XLISP 2.0 and the files of UL.ARC.
  72.  
  73. 2) in XLISP type 
  74.    (load "ad.lsp")  followed by <Return> or <CR>
  75.  
  76. 3) Start the program with
  77.    (make-it)        followed by <Return> or <CR>
  78.  
  79. 4) wait until the data files are loaded, then
  80.    follow the MENU.
  81.  
  82. 5) in case of panic, stop with <control-C>
  83.    (or ^C)
  84.  
  85. 6) to restart the program without loading the data-files again
  86.    type
  87.    (top-round)      followed by <Return> or <CR>
  88.  
  89.  
  90.  
  91.  
  92. Any comments and suggestions are heavily appreciated
  93.  
  94. Silvio Marugg  72037,606
  95.